home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak Vol A-4
/
(Vol A-4) Vol. A4.iso
/
Games
/
the-kitchen-of-doom.swf
/
scripts
/
DefineSprite_669
/
frame_1
/
DoAction.as
Wrap
Text File
|
2008-03-14
|
1KB
|
41 lines
function SendGameLaunched(appID)
{
var _loc1_ = new LoadVars();
_loc1_.func = "PLAYED";
_loc1_.id = appID;
_loc1_.vers = version;
var _loc2_ = new Date();
_loc1_.date = _loc2_.getFullYear() + "-" + _loc2_.getMonth() + "-" + _loc2_.getDate() + " " + _loc2_.getHours() + ":" + _loc2_.getMinutes() + ":" + _loc2_.getSeconds();
_loc1_.sendAndLoad(url,_loc1_,"POST");
}
function SendFrameRateInfo(appID, averageFPS)
{
var _loc1_ = new LoadVars();
_loc1_.func = "FRAMERATE";
_loc1_.id = appID;
_loc1_.avfps = averageFPS;
_loc1_.sendAndLoad(url,_loc1_,"POST");
}
function SendSystemInfo(appID)
{
var _loc1_ = new LoadVars();
_loc1_.func = "SYSTEM";
_loc1_.id = appID;
_loc1_.language = System.capabilities.language;
_loc1_.os = System.capabilities.os;
_loc1_.screenx = System.capabilities.screenResolutionX;
_loc1_.screeny = System.capabilities.screenResolutionY;
_loc1_.player = getVersion();
_loc1_.sendAndLoad(url,_loc1_,"POST");
}
function SendSendToFriend(appID, useCode)
{
var _loc1_ = new LoadVars();
_loc1_.func = "SENDTOAFRIEND";
_loc1_.id = appID;
_loc1_.code = useCode;
_loc1_.sendAndLoad(url,_loc1_,"POST");
}
var version = "1.1";
var url = "http://stats.fishinabottle.com/scripts/submitstats.php";